home *** CD-ROM | disk | FTP | other *** search
/ Into That Dark Night / Into That Dark Night.iso / pc / YadVashem / Database / TXTSHOW.dxr / 00006.ls < prev    next >
Encoding:
Text File  |  2003-03-14  |  792 b   |  23 lines

  1. global gTextSprite, gDBItem, gHandCursor, gCameFrom, gDataPath, gPathDel
  2.  
  3. on prepareMovie
  4.   set gTextSprite to 10
  5.   set tmpName to "txt" & gDBItem
  6.   put tmpName
  7.   set the member of sprite gTextSprite to the number of member tmpName of castLib "DBCast"
  8.   set gHandCursor to [member "handCursorCast" of castLib "Globals", member "handCursorCastMask" of castLib "Globals"]
  9.   set exitSprite to 20
  10.   if gCameFrom = #pres then
  11.     set the visible of sprite exitSprite to 1
  12.   else
  13.     set the visible of sprite exitSprite to 0
  14.   end if
  15.   set originalPath to gDataPath & "VR_docs" & gPathDel & gDBItem & ".mov"
  16.   set originalSprite to 115
  17.   if checkIfFileExist(originalPath) then
  18.     set the visible of sprite originalSprite to 1
  19.   else
  20.     set the visible of sprite originalSprite to 0
  21.   end if
  22. end
  23.